一般文字輸入框
可以一直打過去或斷行
官方提供一些預設的登打模式
android:inputType="textEmailAddress"
"text" : 普通文字
"textEmailAddress" : email 鍵盤會提供 @
"textUri" :Uri 鍵盤會提供 /
"number" : 鍵盤會變成數字鍵盤
"phone" :鍵盤會變成打電話的樣子
實作API: https://developer.android.com/guide/topics/ui/controls/text.html
出來跑的,總是要還,繼續補Switch
用來表示true/false狀態
有下列幾個做法
實作API: http://developer.android.com/guide/topics/ui/controls/checkbox.html
實作API: http://developer.android.com/guide/topics/ui/controls/radiobutton.html
基本上是方的,要做成美美的圓的還要自己寫view
實作API: http://developer.android.com/reference/android/widget/Switch.html
同場加映:Toggle Button
實作API: http://developer.android.com/guide/topics/ui/controls/togglebutton.html
參考資料:
https://developer.android.com/guide/topics/ui/controls/text.html